b828b3546cc582fccf7ac9e7143d4b6adb8c7f1d,src/java/us/kbase/mobu/tester/ModuleTester.java,ModuleTester,runTests,#String#boolean#boolean#,82

Before Change


            System.out.println();
            ProcessHelper.cmd("chmod", "+x", runTestsSh.getCanonicalPath()).exec(tlDir);
            int exitCode = ProcessHelper.cmd("bash", DirUtils.getFilePath(runTestsSh),
                    callbackUrl.toExternalForm()).exec(tlDir).getExitCode();
            return exitCode;
        } finally {
            if (jettyServer != null) {

After Change


            System.out.println();
            ProcessHelper.cmd("chmod", "+x", runTestsSh.getCanonicalPath()).exec(tlDir);
            int exitCode = ProcessHelper.cmd("bash", DirUtils.getFilePath(runTestsSh),
                    callbackUrl == null ? "http://fakecallbackurl" : 
                        callbackUrl.toExternalForm()).exec(tlDir).getExitCode();
            return exitCode;
        } finally {
            if (jettyServer != null) {